swap$80776$ - перевод на испанский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

swap$80776$ - перевод на испанский

PROCESS OF SWAPPING DATA BETWEEN COMPUTER VARIABLES
Std::swap; Swap (computer science); Swap operation

swap      
v. intercambiar, alternar, cambalachear, canjear, chamar, permutar, reciprocar, trocar; hacer un intercambio, hacer un cambio, hacer un canje
swap         
WIKIMEDIA DISAMBIGUATION PAGE
Swap (disambiguation); SWAP; Swaps
(v.) = intercambiar

Def: También escrito swop.
Ex: The program automatically swaps CONFIG.SYS and AUTOEXEC.BAT files and executes a warm boot in one step.
----
* swap in and out of = traspasar
* swap shop = sesión de intercambio
swap         
WIKIMEDIA DISAMBIGUATION PAGE
Swap (disambiguation); SWAP; Swaps
cambio
cambiar
intercambiar
canjear
trocar

Определение

swap
I
n.
exchange
to make a swap for
II
v.
1) (D; tr.) to swap for (she swapped her bicycle for a hi-fi)
2) (O) I'll swap you my bicycle for your hi-fi

Википедия

Swap (computer programming)

In computer programming, the act of swapping two variables refers to mutually exchanging the values of the variables. Usually, this is done with the data in memory. For example, in a program, two variables may be defined thus (in pseudocode):

data_item x := 1
data_item y := 0

swap (x, y);

After swap() is performed, x will contain the value 0 and y will contain 1; their values have been exchanged. This operation may be generalized to other types of values, such as strings and aggregated data types. Comparison sorts use swaps to change the positions of data.

In many programming languages the swap function is built-in. In C++, overloads are provided allowing std::swap to exchange some large structures in O(1) time.